home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / LOTTORTS / BOWLLEAG.LZH / INSTALL.BAT < prev    next >
DOS Batch File  |  1992-02-01  |  968b  |  47 lines

  1. echo off
  2. cls
  3. if not exist bowl101.exe goto :errordrive
  4. echo The Bowl101! Install Procedure copies all program
  5. echo files onto your hard drive in a directory called
  6. echo BOWL.
  7. echo INSTALL followed by the drive specification.
  8. echo Example.....
  9. echo.
  10. echo A:    Log to the drive containing BOWL101
  11. echo.
  12. echo.
  13. echo INSTALL C:
  14. echo.
  15. echo.
  16. echo Installs Bowl101! onto drive C:\BOWL
  17. echo.
  18. echo Press Ctrl-Break if you wish to exit and start again or...
  19. if "%1"=="" goto error
  20. pause
  21. set d=c:
  22. set d=%1%
  23. :Copyall
  24. MD %d%\bowl
  25. echo -1>%d%test101.101
  26. if not exist %d%test101.101 goto :error
  27. del %d%test101.101
  28. copy *.* %d%\bowl
  29. cls 
  30. CD %d%\bowl
  31. %1
  32. echo ***************************
  33. echo *  Installation Complete  *
  34. echo ***************************
  35. goto end
  36. :errordrive
  37. echo 
  38. echo.
  39. echo Please Log to drive containing Bowl101 and try again.
  40. echo.
  41. goto end
  42. :error
  43. echo 
  44. echo.
  45. echo Please specify drive to install Bowl101 on.
  46. :end
  47.